home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / ULARN.ARJ / ULARN.TAR / ularn / config.c < prev    next >
C/C++ Source or Header  |  1989-10-25  |  1KB  |  34 lines

  1. /*
  2.  *    config.c    
  3.  *            This defines the installation dependent variables.
  4.  *                  Some strings are modified later.  ANSI C would
  5.  *                  allow compile time string concatenation, we must
  6.  *                  do runtime concatenation, in main.
  7.  */
  8. #include "header.h"
  9.  
  10. /* the game save filename   */
  11. char savefilename[SAVEFILENAMESIZE] =     HOME;
  12.  
  13. /* the score file            */
  14. char scorefile[sizeof(HOME)+sizeof(SCORENAME)] =    HOME;
  15.  
  16. /* the logging file        */
  17. char logfile[sizeof(HOME)+sizeof(LOGFNAME)]  =    HOME;
  18.  
  19. /* the help text file    */
  20. char helpfile[sizeof(HOME)+sizeof(HELPNAME)] =    HOME;
  21.  
  22. /* the maze data file    */
  23. char larnlevels[sizeof(HOME)+sizeof(LEVELSNAME)] =     HOME;
  24.  
  25. /* the fortune data file */
  26. char fortfile[sizeof(HOME)+sizeof(FORTSNAME)] =    HOME;
  27.  
  28. /* the .Ularnopts filename */
  29. char optsfile[128] ="/.Ularnopts";    /* the option file */
  30.  
  31. char diagfile[] ="Diagfile";        /* the diagnostic filename    */
  32. char ckpfile[] ="Ularn.ckp";        /* the checkpoint filename    */
  33. char *password ="debbie1";        /* the wizards password */
  34.